0b85ea91eed9c31ee7b2b6c0b033cfb83c14e425,redisson-tomcat/redisson-tomcat-6/src/main/java/org/redisson/tomcat/RedissonSession.java,RedissonSession,removeAttributeInternal,#String#boolean#,123

Before Change


    protected void removeAttributeInternal(String name, boolean notify) {
        super.removeAttributeInternal(name, notify);
        
        if (getId() != null) {
            RMap<String, Object> map = redissonManager.getMap(getId());
            map.fastRemove(name);
        }
    }
    

After Change


        super.removeAttributeInternal(name, notify);
        
        if (map != null) {
            map.fastRemove(name);
        }
    }